home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- global gPC, gD, gVlog, gVsac
- vMovpat = the moviePath
- repeat with r = 1 to 6
- delete char -30000 of vMovpat
- end repeat
- repeat with i = 1 to 100
- n = getNthFileNameInFolder(vMovpat, i)
- m = getNthFileNameInFolder(the moviePath, i)
- if n = "Services" then
- gVsac = 128
- sprite(20).locV = gVsac
- end if
- if m = "logo.jpg" then
- importFileInto(sprite(21).member, the moviePath & "logo.jpg")
- gVlog = 77
- sprite(21).locV = gVlog
- end if
- if (sprite(20).locV = 128) and (sprite(21).locV = 77) then
- gVsac = 230
- sprite(20).locV = gVsac
- end if
- end repeat
- updateStage()
- end
-